home *** CD-ROM | disk | FTP | other *** search
- ' This file contains the system filters
-
- Option Explicit
-
- ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
- 'Save all sent mail filter
-
- Function Filter_Message_System_Log_Outgoing_Mail_Name
- Filter_Message_System_Log_Outgoing_Mail_Name = Application.LoadString(IDS_FILTER_MESSAGE_SYSTEM_LOG_OUTGOING_MAIL_NAME)
- End Function
-
- Function Filter_Message_System_Log_Outgoing_Mail_Description
- Filter_Message_System_Log_Outgoing_Mail_Description = Application.LoadString(IDS_FILTER_MESSAGE_SYSTEM_LOG_OUTGOING_MAIL_DESCRIPTION)
- End Function
-
- Function Filter_Message_System_Log_Outgoing_Mail_Terminal
- Filter_Message_System_Log_Outgoing_Mail_Terminal = False
- End Function
-
- Function Filter_Message_System_Log_Outgoing_Mail(Message)
- If True Then
- Filter_Message_System_Log_Outgoing_Mail = False
- If Not Action_Message_CopyToFolder_Folder(Message, Application.LoadString(IDS_JMAIL_SENT)) Then Exit Function
- Filter_Message_System_Log_Outgoing_Mail = True
- Else
- Filter_Message_System_Log_Outgoing_Mail = True
- End If
- End Function
-